-
Notifications
You must be signed in to change notification settings - Fork 795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(instrumentation-fetch): fetch(string, Request)
silently drops request body
#2411
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## main #2411 +/- ##
==========================================
+ Coverage 92.14% 92.64% +0.49%
==========================================
Files 120 137 +17
Lines 3998 4975 +977
Branches 844 1048 +204
==========================================
+ Hits 3684 4609 +925
- Misses 314 366 +52
|
dyladan
reviewed
Aug 12, 2021
Co-authored-by: Daniel Dyla <[email protected]>
dyladan
reviewed
Aug 12, 2021
dyladan
approved these changes
Aug 12, 2021
johnbley
approved these changes
Aug 12, 2021
dyladan
changed the title
fix(instrumentation-fetch): pass request object as the only parameter
fix(instrumentation-fetch): Aug 12, 2021
fetch(string, Request)
silently drops request body
MSNev
approved these changes
Aug 12, 2021
mhennoch
approved these changes
Aug 12, 2021
obecny
approved these changes
Aug 12, 2021
vmarchaud
approved these changes
Aug 14, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Which problem is this PR solving?
tl;dr: Fetch instrumentation drops request body when using
Request
object.Currently fetch instrumentation forwards calls via 2 parameter signature regardless if 'fetch(Request)
or
fetch(url, object)` signature is being used:opentelemetry-js/packages/opentelemetry-instrumentation-fetch/src/fetch.ts
Line 299 in 90ea0fe
This however is causing a bug where passing request object as 2nd parameter drops request body: https://jsfiddle.net/t2t2/bc53reqf/
(confirmed with both Firefox 90.0.2 & Chrome 92.0.4515.131)
In quick research found that while Request.body should return a
ReadableStream
none of the browsers actually do it right now.fetch(url, object)
is probably trying to find body from 2nd parameter as a normal object but isn't finding anything.Short description of the changes
In case of
fetch(Request)
call original method with the same signature.